home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000393_fdc@panix.com_Thu Jul 27 16:15:41 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  1KB

  1. Path: reader2.panix.com!reader1.panix.com!panix!not-for-mail
  2. From: Frank Da Cruz <fdc@panix.com>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: macro  assignment of cr / lf characters
  5. Date: Thu, 27 Jul 2006 20:15:31 +0000 (UTC)
  6. Organization: PANIX Public Access Internet and UNIX, NYC
  7. Lines: 21
  8. Message-ID: <slrneci7n3.dct.fdc@panix3.panix.com>
  9. References: <g8exg.4261$bP5.559@newsread1.news.pas.earthlink.net>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: panix3.panix.com
  12. X-Trace: reader2.panix.com 1154031331 16094 166.84.1.3 (27 Jul 2006 20:15:31 GMT)
  13. X-Complaints-To: abuse@panix.com
  14. NNTP-Posting-Date: Thu, 27 Jul 2006 20:15:31 +0000 (UTC)
  15. User-Agent: slrn/0.9.8.0 (NetBSD)
  16. Xref: panix comp.protocols.kermit.misc:15524
  17.  
  18. On 2006-07-25, <nospam@killspam.org> <nospam@killspam.org> wrote:
  19. : I've looked through the help and am (nearly) sure there's a way to do this,
  20. : but I haven't been able to figure out how to concatenate a variable with a
  21. : linefeed or carriage return in it...
  22. :
  23. : i.e.
  24. : assign foo bar
  25. : assign foo bar\0x0D\0x0A
  26. :
  27. : yield the same results for \flength(\m(foo))
  28. :
  29. : Should I put the lines I want in an array and write them to a tempfile 
  30. : instead of attempting concatenation? 
  31. :
  32. assign foo bar \13\10
  33.  
  34. or:
  35.  
  36. assign foo bar \x0d\x0a
  37.  
  38. - Frank